From: Kenichi Handa Date: Thu, 27 Feb 1997 07:47:24 +0000 (+0000) Subject: (describe_syntax): Handle the case that the argument X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~81963 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=908b7fea57959f6ff21ffc05935640daac6c155a;p=emacs.git (describe_syntax): Handle the case that the argument VALUE is char-table. --- diff --git a/src/syntax.c b/src/syntax.c index b5d9c9a5b01..2ce4f85bc27 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -431,6 +431,12 @@ describe_syntax (value) return; } + if (CHAR_TABLE_P (value)) + { + insert_string ("deeper char-table ...\n"); + return; + } + if (!CONSP (value)) { insert_string ("invalid\n");